compress/flate.compressor.index (field)

29 uses

	compress/flate (current package)
		deflate.go#L104: 	index         int
		deflate.go#L124: 	if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
		deflate.go#L127: 		d.index -= windowSize
		deflate.go#L185: 	if d.index != 0 || d.windowEnd != 0 {
		deflate.go#L225: 	d.index = n
		deflate.go#L375: 	d.index = 0
		deflate.go#L381: 	if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync {
		deflate.go#L389: 		if d.index > d.windowEnd {
		deflate.go#L392: 		lookahead := d.windowEnd - d.index
		deflate.go#L397: 			if d.index > d.windowEnd {
		deflate.go#L404: 					d.tokens = append(d.tokens, literalToken(uint32(d.window[d.index-1])))
		deflate.go#L408: 					if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L416: 		if d.index < d.maxInsertIndex {
		deflate.go#L418: 			hash := hash4(d.window[d.index : d.index+minMatchLength])
		deflate.go#L421: 			d.hashPrev[d.index&windowMask] = uint32(d.chainHead)
		deflate.go#L422: 			*hh = uint32(d.index + d.hashOffset)
		deflate.go#L428: 		minIndex := d.index - windowSize
		deflate.go#L436: 			if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
		deflate.go#L457: 					newIndex = d.index + d.length
		deflate.go#L459: 					newIndex = d.index + prevLength - 1
		deflate.go#L461: 				index := d.index
		deflate.go#L473: 				d.index = index
		deflate.go#L482: 				d.index += d.length
		deflate.go#L486: 				if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L493: 				i := d.index - 1
		deflate.go#L495: 					i = d.index
		deflate.go#L505: 			d.index++
		deflate.go#L621: 		d.index, d.windowEnd = 0, 0